body {
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    background-color: aliceblue;
}

.container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background-color: lightsteelblue;
    box-shadow: 10px rgba(0, 0.1);
    border-radius: 10px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-header {
    text-align: center;
    margin-bottom: 20px;
}

.profile-picture {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 10px;
    border: 3px solid #ccc;
}

.profile-details {
    width: 100%;
    text-align: left;
}

.profile-details h3 {
    margin-top: 0;
    color: #333;
}

.profile-details p {
    margin: 10px;
    color: #666;
}

.profile-details p strong {
    color: #333;
}





